home *** CD-ROM | disk | FTP | other *** search
/ Aminet 31 / Aminet 31 (1999)(Schatztruhe)[!][Jun 1999].iso / Aminet / docs / mags / astorm7.lha / amigastorm_7 / source / primjer1.c next >
C/C++ Source or Header  |  1999-02-18  |  138b  |  10 lines

  1. #include <stdio.h>
  2. main()
  3. {
  4.         float a,b;
  5.  
  6.         a=123e2;   // 123*10^2
  7.         b=34.746;
  8.  
  9.         printf (" Zbroj je: %f ",a+b);
  10. }